home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Language/OS - Multiplatform Resource Library
/
LANGUAGE OS.iso
/
lisp
/
elk-2_0.lha
/
elk-2.0
/
lib
/
misc
/
debug.c
< prev
next >
Wrap
C/C++ Source or Header
|
1992-10-05
|
217b
|
12 lines
#include "scheme.h"
static Object P_Debug (on) Object on; {
Check_Type (on, T_Boolean);
GC_Debug = EQ(on, True);
return Void;
}
init_lib_debug () {
Define_Primitive (P_Debug, "debug", 1, 1, EVAL);
}